Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
livereload-js
Advanced tools
LiveReload is a tool for web developers and designers. See livereload.com for more info.
To use LiveReload, you need a client (this script) in your browser and a server running on your development machine.
This repository (livereload.js) implements the client side of the protocol. The client connects to a LiveReload server via web sockets and listens for incoming change notifications. When a CSS or an image file is modified, it is live-refreshed without reloading the page. When any other file is modified, the page is reloaded.
The server notifies the client whenever a change is made. Available servers are:
If you are a web developer looking to use LiveReload, you should refer to your LiveReload server/app/tool's documentation, rather that this repository. You should use the copy of livereload.js script bundled with your server, because it's guaranteed to be compatible, and may be customized for that server.
Most LiveReload server vendors will serve livereload.js on the LiveReload port. When your server is running, you can typically access the script at http://0.0.0.0:35729/livereload.js
.
Please read on only if you are:
This repository contains a JavaScript file implementing the client side of the LiveReload protocol. It gets change notifications from a LiveReload server and applies them to the browser.
If you are developing a LiveReload server, see dist/livereload.js for the latest version built using the sources in this repository. We require LiveReload server vendors to distribute livereload.js as part of their apps or tools.
An old version of this script is also bundled with the LiveReload browser extensions, but it's not getting updated and only serves for compatibility with very old clients.
Features:
@import
support<img src="..." />
, background-image
and border-image
properties, both inline and in stylesheets)Would love, but doesn't seem possible:
This script is published on Bower. (But, to reiterate: the preferred method is to avoid installing it altogether, and instead use the one bundled with your LiveReload server/app/tool.)
Installation:
bower install livereload-js --save-dev
This gives you a component containing a single script file, dist/livereload.js
.
Including livereload.js into your Browserify bundle probably makes no sense, because livereload.js isn't something you would ship to production.
But if you insist and you know what you're doing, you can install LiveReload via npm:
npm install livereload-js --save
and then add this to your bundle:
window.LiveReloadOptions = { host: 'localhost' };
require('livereload-js');
Note that livereload-js package uses window
and document
globals, so won't run under Node.js environment.
The reason you need to specify LiveReloadOptions
is that livereload.js
won't be able to find its <script>
tag and would normally bail out with an error message.
This script is meant to be included into the web pages you want to monitor, like this:
<script src="http://localhost:35729/livereload.js"></script>
LiveReload 2 server listens on port 35729
and serves livereload.js over HTTP (besides speaking the web socket protocol on the same port).
A slightly smarter way is to use the host name of the current page, assuming that it is being served from the same computer. This approach enables LiveReload when viewing the web page from other devices on the network:
<script>document.write('<script src="http://'
+ location.host.split(':')[0]
+ ':35729/livereload.js"></'
+ 'script>')</script>
However, since location.host
is empty for file:
URLs, we need to account for that:
<script>document.write('<script src="http://'
+ (location.host || 'localhost').split(':')[0]
+ ':35729/livereload.js"></'
+ 'script>')</script>
LiveReload.js finds a script
tag that includes …/livereload.js
and uses it to determine the hostname/port to connect to. It also understands some options from the query string: host
, port
, snipver
, mindelay
and maxdelay
.
snipver
specifies a version of the snippet, so that we can warn when the snippet needs to be updated. The currently recommended snipver
is version 1:
<script>document.write('<script src="http://'
+ (location.host || 'localhost').split(':')[0]
+ ':35729/livereload.js?snipver=1"></'
+ 'script>')</script>
Additionally, you might want to specify mindelay
and maxdelay
, which is minimum and maximum reconnection delay in milliseconds (defaulting to 1000
and 60000
).
Alternatively, instead of loading livereload.js from the LiveReload server, you might want to include it from a different URL. In this case, add a host
parameter to override the host name. For example:
<script src="https://github.com/livereload/livereload-js/raw/master/dist/livereload.js?host=localhost"></script>
Options can either be specified as query parameters of the <script src="..../livereload.js">
tag's source URL, or as a global window.LiveReloadOptions
dictionary. If the dictionary is specified, livereload.js
does not even try looking for its <script>
tag.
The set of supported options is the same for both methods:
host
: the host that runs a LiveReload server; required if specifying LiveReloadOptions
, otherwise will be autodetected as the origin of the <script>
tagport
: optional server port overridepath
: optional path to livereload server (default: 'livereload')mindelay
, maxdelay
: range of reconnection delays (if livereload.js
cannot connect to the server, it will attempt to reconnect with increasing delays); defaults to 1,000 ms minimum and 60,000 ms maximumhandshake_timeout
: timeout for a protocol handshake to be completed after a connection attempt; mostly only needed if you're running an interactive debugger on your web socket serverisChromeExtension
: reload chrome runtime instead of page when true (default: false)reloadMissingCSS
: prevent reload of CSS when changed stylesheet isn't found in page (default: true)Live reloading of imported stylesheets has a 200ms lag. Modifying a CSS @import
rule to reference a not-yet-cached file causes WebKit to lose all document styles, so we have to apply a workaround that causes a lag.
Our workaround is to add a temporary <link />
element for the imported stylesheet we're trying to reload, wait 200ms to make sure WebKit loads the new file, then remove <link />
and recreate the @import
rule. This prevents a flash of unstyled content. (We also wait 200 more milliseconds and recreate the @import
rule again, in case those initial 200ms were not enough.)
Live image reloading is limited to <img src="..." />
, background-image
and border-image
styles. Any other places where images can be mentioned?
Live image reloading is limited to jpg
, jpeg
, gif
, and png
extensions. Maybe need to add svg
there? Anything else?
It is possible to communicate with a running LiveReload script using DOM events:
LiveReloadShutDown
event on document
to make LiveReload disconnect and go awayLiveReloadConnect
event on document
to learn when the connection is establishedLiveReloadDisconnect
event on document
to learn when the connection is interrupted (or fails to be established)The LiveReload
object is also exposed as window.LiveReload
, with LiveReload.disconnect()
, LiveReload.connect()
, and LiveReload.shutDown()
available. However, I'm not yet sure if I want to keep this API, so consider it non-contractual. (And please tell me if you have a use for it!)
To enable debugging output to console, append ?LR-verbose
to your URL.
Requirements:
npm install grunt-cli
)To install additional prerequisites:
npm install
To build:
grunt build
To run tests:
grunt
Manual testing: open files in test/html/*
in various browsers, make some changes and make sure they are applied.
Testing the Browserify usage scenario: grunt browserify:test
, then perform manual testing of test/html/browserified/
.
Update the version number in package.json
.
Run rake version
to update the version numbers in all other files, using the one from package.json
.
Run grunt
.
Do some manual testing.
Tag the version in Git: rake tag
then git push --tags
.
npm publish
livereload-js is available under the MIT license. See the LICENSE file for details.
2.2.1 (Jan 17, 2015)
/lib
in the package2.2.0 (Jan 16, 2015)
2.1.0 (Jan 16, 2015)
rel
attribute in <link rel="stylesheet">
tags, to accommodate legacy Rails versionsconsole
when it's not defined2.0.8 (May 22, 2012)
<link>
tags(older history not recorded)
FAQs
LiveReload JS client - auto reload browser on changes
We found that livereload-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.